Performs likelihood ratio tests against the model with the largest number of parameters.
# S3 method for eRm
anova(object, …)# S3 method for eRm_anova
print(x, …)
Gives the first object to be tested against others which follow, separated by commata.
An object of class "eRm_anova"
.
Further models to test with anova.eRm()
.
anova.eRm
returns a list object of class eRm_anova
containing:
function calls of the different models (character).
the analysis of deviances table (columns are LLs
: conditional log-likelihoods, dev
: deviances, npar
: number of parameters, LR
: likelihood ratio statistics, df
: degrees of freedom, p
:
Although, there is a check for identical data matrices used, the models have to be nested for the likelihood ratio test to work. You have to ensure that this is the case, otherwise results will be invalid.
LLRAs cannot be tested with other models (RM, LLTM, RSM, …); for more information see anova.llra
.
The anova
method is quite flexible and, as long the used data are identical, every model except the LLRA can be tested against each other.
Regardless of the order that models are specified, they will always be sorted by the number of parameters in decreasing order.
If
# NOT RUN {
### dichotomous data
dmod1 <- RM(lltmdat1)
dmod2 <- LLTM(lltmdat1, mpoints = 2)
anova(dmod1, dmod2)
### polytomous data
pmod1 <- RSM(rsmdat)
pmod2 <- PCM(rsmdat)
anova(pmod1, pmod2)
W <- cbind(rep(c(1,0), each=9), rep(c(0,1), each=9))
W
pmod3 <- LPCM(rsmdat, W)
anova(pmod3, pmod1, pmod2) # note that models are sorted by npar
# }
Run the code above in your browser using DataLab